HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/owlcrm/app/first-project/resources/views/library/show.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>update data</title>
    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
    <div class="container">
        <div class="row">
            <div class="col-6">
                <h1>Table for show the data</h1>
                <table class= table table-bordered table-striped>
                  <tr>
                     <th>Name</th>
                     <th>email</th>
                     <th>age</th>
                     <th>city</th>
                  </tr>
                  @foreach($data as $id =>$library)
                  <tr>
                     <td>{{ $library->Name }}</td>
                     <td>{{ $library->email }}</td>
                     <td>{{ $library->age }}</td>
                     <td> {{ $library->city }}</td>
                  </tr>
                  @endforeach
                 <a href="{{ url('/') }}" class="btn btn-danger btn-sm">Create new</a>
                </table>
            </div>
        </div>
    </div>

</body>
</html>